home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / littelcomp / r5 / lc / examples / cond.l < prev    next >
Text File  |  2000-02-28  |  110b  |  15 lines

  1. ;
  2.  
  3. PROC main
  4.    VAR a b c
  5.    CODESTART
  6.    COPY 10 a
  7.    COPY 12 b
  8.    CND a > b c
  9.    cnd a < b c
  10.  
  11.  
  12. ENDPROC
  13. END
  14.  
  15.